Fix another compiler warning about unused variables
authorMatthias Clasen <mclasen@redhat.com>
Sun, 30 Jan 2011 06:53:49 +0000 (01:53 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 30 Jan 2011 06:53:49 +0000 (01:53 -0500)
gtk/tests/builder.c

index 1c0acaa8a636c76db0e697748eb216a7f67fb603..6da3279dfe11b49bd9dff3f6bc7e4e5e5ca8d9bf 100644 (file)
@@ -2503,11 +2503,9 @@ test_file (const gchar *filename)
 
       if (GTK_IS_DIALOG (obj))
        {
-         int response;
-
          g_print ("Running dialog %s.\n",
                   gtk_widget_get_name (GTK_WIDGET (obj)));
-         response = gtk_dialog_run (GTK_DIALOG (obj));
+         gtk_dialog_run (GTK_DIALOG (obj));
        }
       else if (GTK_IS_WINDOW (obj))
        {